home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 7 / FM Towns Free Software Collection 7.iso / t_os / gpen32k / source.exe / LIB / OSRC / OUBOX.C < prev    next >
C/C++ Source or Header  |  1993-05-12  |  187b  |  9 lines

  1.  
  2. #include <normlib.h>
  3.  
  4. void ubox( int x1, int y1, int x2, int y2, int c1, int c2 )
  5. {
  6.     connect( 3, x2, y1, x2, y2, x1, y2, 2, c2 );
  7.     connect( 3, x2, y1, x1, y1, x1, y2, 2, c1 );
  8. }
  9.